home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form AboutBox
- BackColor = &H00FFFFFF&
- BorderStyle = 3 'Fixed Dialog
- Caption = "About Internet Mail"
- ClientHeight = 7215
- ClientLeft = 1635
- ClientTop = 1920
- ClientWidth = 9165
- DrawWidth = 3
- ForeColor = &H00000000&
- Height = 7620
- Icon = "About.frx":0000
- Left = 1575
- LinkTopic = "Form2"
- LockControls = -1 'True
- MaxButton = 0 'False
- MinButton = 0 'False
- NegotiateMenus = 0 'False
- ScaleHeight = 7215
- ScaleWidth = 9165
- Top = 1575
- Width = 9285
- Begin VB.Frame fraCompany
- BackColor = &H00FFFFFF&
- Caption = "Company Information"
- Height = 2595
- Left = 3150
- TabIndex = 3
- Top = 3300
- Width = 3705
- Begin VB.Label lblInfo
- AutoSize = -1 'True
- BackColor = &H00FFFFFF&
- Caption = "Label1"
- Height = 195
- Left = 120
- TabIndex = 4
- Top = 255
- Width = 480
- End
- End
- Begin VB.PictureBox CrescentLogo
- Appearance = 0 'Flat
- AutoSize = -1 'True
- BackColor = &H80000005&
- BorderStyle = 0 'None
- ForeColor = &H80000008&
- Height = 2505
- Left = 0
- Picture = "About.frx":000C
- ScaleHeight = 2505
- ScaleWidth = 7080
- TabIndex = 2
- Top = 3375
- Width = 7080
- Begin VB.Line lneBorder
- BorderColor = &H00800000&
- X1 = 3180
- X2 = 9000
- Y1 = 0
- Y2 = 0
- End
- End
- Begin VB.CommandButton cmdOK
- Caption = "OK"
- Default = -1 'True
- Height = 375
- Left = 5730
- TabIndex = 0
- Top = 2610
- Width = 1185
- End
- Begin VB.Image imgIcon
- Height = 1335
- Index = 1
- Left = 5715
- Picture = "About.frx":13836
- Top = 90
- Width = 1305
- End
- Begin VB.Label lblWarning
- BackStyle = 0 'Transparent
- Caption = $"About.frx":15760
- ForeColor = &H00000000&
- Height = 1035
- Left = 75
- TabIndex = 1
- Top = 2295
- UseMnemonic = 0 'False
- Width = 4785
- WordWrap = -1 'True
- End
- Begin VB.Line lneSeparator
- BorderColor = &H00808000&
- BorderWidth = 2
- Index = 1
- X1 = -240
- X2 = 7910
- Y1 = 2190
- Y2 = 2190
- End
- Begin VB.Line lneSeparator
- BorderColor = &H00000000&
- Index = 0
- X1 = -135
- X2 = 7910
- Y1 = 2205
- Y2 = 2205
- End
- Begin VB.Image imgIcon
- Height = 1995
- Index = 0
- Left = 75
- Picture = "About.frx":15884
- Top = 90
- Width = 840
- End
- Attribute VB_Name = "AboutBox"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub cmdOK_Click()
- Unload Me
- End Sub
- Private Sub Form_Load()
- CenterForm Me
- CrescentLogo.Width = 3210
- Dim Info As String
- Const Company As String = "Crescent Division of Progress Software"
- Const Address As String = "14 Oak Park"
- Const CityState As String = "Bedford, MA"
- Const Zip As String = "01730"
- Const TechSupport As String = "(781) 280-3000"
- Const email As String = "crescent@progress.com"
- Const Web As String = "http://crescent.progress.com"
- Info = " " & vbCrLf & vbCrLf
- Info = Company & vbCrLf
- Info = Info & Address & vbCrLf
- Info = Info & CityState & " " & Zip & vbCrLf & vbCrLf
- Info = Info & "Tel: " & TechSupport & vbCrLf & vbCrLf
- Info = Info & "Web: " & Web & vbCrLf
- Info = Info & "Email: " & email & vbCrLf
- lblInfo.Caption = Info
- End Sub
- Private Sub Form_Paint()
- Dim SysRes As Integer
- Dim PrintText As String
- PrintText = "Progress Software Corporation Internet Mail Version 1.0"
- Me.CurrentY = 150
- Me.CurrentX = 1100
- Print PrintText;
- PrintText = "Copyright " & Chr(169) & " 1996 Progress Software Corporation"
- Me.CurrentY = 375
- Me.CurrentX = 1100
- Print PrintText;
- PrintText = "This product is licensed to:"
- Me.CurrentY = 750
- Me.CurrentX = 1100
- Print PrintText;
- Me.CurrentY = 1150
- Me.CurrentX = 1100
- Print "Internet ToolPak Customer";
- Me.CurrentY = 1375
- Me.CurrentX = 1100
- Print "Your Company";
- PrintText = "Serial number: 00000000-00"
- Me.CurrentY = 1600
- Me.CurrentX = 1100
- Print PrintText;
- End Sub
- Private Sub imgIcon_DblClick(Index As Integer)
- MsgBox "This software designed by Val", vbOKOnly, "Internet Mail"
- End Sub
-